POV-Ray : Newsgroups : povray.general : underwater caustics examples : Re: underwater caustics examples - now calling Christoph Server Time
5 Aug 2024 12:17:37 EDT (-0400)
  Re: underwater caustics examples - now calling Christoph  
From: Christoph Hormann
Date: 20 Sep 2002 10:17:14
Message: <3D8B2DE9.2D0C3859@gmx.de>
Tom Melly wrote:
> 
> [...]
> 
> Chris - can you supply the pov-code you used to create:
> http://www-public.tu-bs.de:8080/~y0013390/pov/water/water33_3b.jpg ?

The relevant code is:

global_settings {
   photons {
     spacing 0.003
   }
}
   
#declare M_Watx = 
material {
  texture {
    pigment {
      color rgbf 1
    }
    finish {
      diffuse 0.0
      ambient 0.0
       
      reflection {
        0.0, 1.0  
        fresnel on
      }

      conserve_energy

      specular 0.4 
      roughness 0.003
    }
    normal {
      bozo 
      scale 0.15 
    } 
  } 
  interior {
    ior 1.3
  }
} 
  

box { 
  <2.2,2.2,0>, <7.6,8,0>      
  material {
    M_Watx
  }  
  photons { target refraction on }
  hollow on
}

And in fact i would have expected you would be able to create something
similar after reading the tutorial - that's what it is for and nearly
every aspect of this code is handled in the text.

Christoph

-- 
POV-Ray tutorials, IsoWood include,                 
TransSkin and more: http://www.tu-bs.de/~y0013390/  
Last updated 13 Aug. 2002 _____./\/^>_*_<^\/\.______


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.